┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/usr/share/systemtap/tapset
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: libperl5.40.2-64.stp
/* This probe will fire when the perl script enters a subroutine. */ probe perl.sub.call = process("/usr/lib64/libperl.so.5.40").mark("sub__entry") { sub = user_string($arg1) filename = user_string($arg2) lineno = $arg3 package = user_string($arg4) } /* This probe will fire when the return from a subroutine has been hit. */ probe perl.sub.return = process("/usr/lib64/libperl.so.5.40").mark("sub__return") { sub = user_string($arg1) filename = user_string($arg2) lineno = $arg3 package = user_string($arg4) } /* This probe will fire when the Perl interperter changes state. */ probe perl.phase.change = process("/usr/lib64/libperl.so.5.40").mark("phase__change") { newphase = user_string($arg1) oldphase = user_string($arg2) } /* Fires when Perl has successfully loaded an individual file. */ probe perl.loaded.file = process("/usr/lib64/libperl.so.5.40").mark("loaded__file") { filename = user_string($arg1) } /* Fires when Perl is about to load an individual file. */ probe perl.loading.file = process("/usr/lib64/libperl.so.5.40").mark("loading__file") { filename = user_string($arg1) } /* Traces the execution of each opcode in the Perl runloop. */ probe perl.op.entry = process("/usr/lib64/libperl.so.5.40").mark("op__entry") { opname = user_string($arg1) }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 libperl5.40.2-64.stp
STP
1.3 KB
2025-07-10 00:00
EDIT
📄 sssd.stp
STP
8.9 KB
2025-10-21 00:00
EDIT
📄 sssd_functions.stp
STP
4.7 KB
2025-07-31 11:06
EDIT